home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-08-25 | 325 b | 16 lines |
- # Makefile for Demonstrating Problem 2.1
- # Part B: Create executable from CPPV2-13.CPP
-
- all:
- # Compile definition of function into object module
- bcc -c cppv2-11.cpp
-
- # Compile declaration and use of function into object
- bcc -c cppv2-13.cpp
-
- # Link
- bcc cppv2-13.obj cppv2-11.obj
-
- # Run program
- cppv2-13
-